#!/bin/sh

echo '--- Checking property list integrity... ---'
find "$HOME/Library/Application Support/Adium 2.0/Users/"* -name '*.plist' -exec plutil -lint {} ';' | grep -vE ' OK$'
echo '--- Done ---'
